home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 4 / Amiga Tools 4.iso / tools / internet-tools / connect-line / cl / devkit / c / include / usershell.h < prev   
Encoding:
C/C++ Source or Header  |  1995-11-12  |  588 b   |  49 lines

  1. /*
  2.  * Interface: UserShell
  3.  *
  4.  * $RCSfile$
  5.  * $Author$
  6.  * $Revision$
  7.  * $Date$
  8.  * $State$
  9.  * $Locker$
  10.  *
  11.  * $Log$
  12.  */
  13.  
  14. #ifndef _UserShell_H
  15. #define _UserShell_H
  16.  
  17. #include <cl_user.h>
  18.  
  19. typedef struct CLUserShell CLUserShell;
  20.  
  21. struct CLUserShell
  22. {
  23.     /*
  24.      * Login ok?
  25.      */
  26.     short                    login_valid;
  27.     time_t                    login_time;
  28.     
  29.     /*
  30.      * aktueller User
  31.      */
  32.     struct User                user;
  33.     struct UserProfile        userprofile;
  34.     
  35.     /*
  36.      * aktuelles Brett des Users
  37.      * '/' vorn = Brett, sonst User-PM
  38.      */
  39.     char                    currentboard[ 512 ];
  40.  
  41.     /*
  42.      *    Restzeit (kann sich ändern)
  43.      */
  44.  
  45.     time_t                    rest_time;
  46. };
  47.  
  48. #endif
  49.